home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / gnustuff / tos / bash / bash-110 / mintve~1 / readline.zoo / readline / Makefile.MiNT < prev    next >
Encoding:
Makefile  |  1991-11-05  |  466 b   |  19 lines

  1. # Makefile for readline and history libraries.
  2. # ST version (dpg)
  3.  
  4. CPPFLAGS = -DVOID_SIGHANDLER -DMiNT
  5. CC = gcc -traditional
  6.  
  7. OBJECTS = readline.o history.o funmap.o keymaps.o
  8.  
  9. all: readline.olb
  10.  
  11. readline.olb:    $(OBJECTS)
  12.     rm -f $@
  13.     ar cs $@ $(OBJECTS)
  14.  
  15. readline.o:    readline.c readline.h chardefs.h keymaps.h history.h
  16. history.o:    history.c history.h
  17. funmap.o:    funmap.c readline.h
  18. keymaps.o:    keymaps.c emacs_keymap.c vi_keymap.c keymaps.h chardefs.h
  19.